  /* Hero 区域 */
    .insights-hero {
      height: 30vh;
      min-height: 250px;
      background: linear-gradient(145deg, #0b1a2a 0%, #1f3a4c 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }
    .insights-hero::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background-image: url('/template/dongzhou/images/1.png'); /* 抽象科技背景 */
      background-size: cover;
      background-position: center;
      opacity: 0.15;
      mix-blend-mode: overlay;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
      animation: heroFade 1.2s ease-out;
    }
    .hero-content h1 {
      font-size: 3.5rem;
      font-weight: 600;
      margin-bottom: 15px;
    }
    .hero-content h1 span {
      color: var(--primary-gold);
    }
    .hero-content p {
      font-size: 1.2rem;
      opacity: 0.9;
    }
    @keyframes heroFade {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* 文章列表 (每篇一行，左侧缩略图，右侧文字) */
    .articles-list {
      margin: 60px 0 40px;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .article-item {
      display: flex;
      gap: 30px;
      background: white;
      border-radius: 28px;
      padding: 24px;
      box-shadow: 0 8px 20px -8px rgba(0,0,0,0.05);
      border: 1px solid var(--border-light);
      transition: all 0.3s;
    }
    .article-item:hover {
      box-shadow: 0 20px 30px -12px rgba(11,26,42,0.15);
      border-color: var(--primary-gold);
    }

    .article-thumbnail {
      flex: 0 0 200px;
      height: 150px;
      border-radius: 16px;
      overflow: hidden;
    }
    .article-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }
    .article-item:hover .article-thumbnail img {
      transform: scale(1.03);
    }

    .article-content {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .article-content h3 {
      margin-bottom: 12px;
    }
    .article-content h3 a {
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--primary-dark);
      text-decoration: none; /* 无下划线 */
      transition: color 0.2s;
    }
    .article-content h3 a:hover {
      color: var(--primary-gold);
    }

    .article-meta {
      display: flex;
      gap: 20px;
      color: var(--gray-mid);
      font-size: 0.9rem;
      margin-bottom: 14px;
    }
    .article-meta i {
      color: var(--primary-gold);
      margin-right: 4px;
    }

    .article-excerpt {
      color: #2d4055;
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .read-more {
      align-self: flex-start;
      color: var(--primary-gold);
      font-weight: 600;
      text-decoration: none;
      border-bottom: 2px solid transparent;
      transition: 0.2s;
    }
    .read-more:hover {
      border-bottom-color: var(--primary-gold);
    }

    /* 分页样式 (完全按照要求) */
    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin: 60px 0 20px;
      flex-wrap: wrap;
    }

    .page-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 8px;
      background: white;
      border: 1px solid var(--border-light);
      border-radius: 40px;
      color: var(--gray-mid);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.2s;
    }

    .page-num i {
      font-size: 0.9rem;
    }

    .page-num:hover {
      border-color: var(--primary-gold);
      color: var(--primary-gold);
      background: rgba(201, 169, 89, 0.05);
    }


    .page-num-current {
      background: var(--primary-gold);
      border-color: var(--primary-gold);
      color: var(--primary-dark);
      pointer-events: none;
    }

    .page-num-current:hover {
      background: var(--primary-gold);
      color: var(--primary-dark);
    }

    /* 响应式 */
    @media (max-width: 800px) {
      .article-item {
        flex-direction: column;
      }
      .article-thumbnail {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
      }
    }

    @media (max-width: 600px) {
      .hero-content h1 {
        font-size: 2.5rem;
      }
      .article-content h3 a {
        font-size: 1.4rem;
      }
    }